gusucode.com > VC++ Win32编程基础实例-源码程序 > VC++ Win32编程基础实例-源码程序/code/day01_04/codes/Console/Console.cpp

    //Download by http://www.NewXing.com
// Console.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"

int main(int argc, char* argv[])
{
	printf("Hello World!\n");
	return 0;
}